logo头像
Snippet 博客主题

1.Spring Boot 热部署

1 Spring Boot 热部署

一、设置
1、command + SHIFT + A –> 查找make project automatically –> 选中
2、command + SHIFT + A –> 查找Registry –> 找到并勾选compiler.automake.allow.when.app.running

pom.xml
中 添加
dependencies 下

1
2
3
4
5
<dependency>  
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>

project 下

1
2
3
4
5
6
7
8
9
10
11
<build>  
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>

支付宝打赏 微信打赏

打赏